home *** CD-ROM | disk | FTP | other *** search
- Path: inforamp.net!ts6-06
- From: rmorin@inforamp.net (Randy Charles Morin)
- Newsgroups: comp.lang.c++
- Subject: Re: Need help!
- Date: Sat, 09 Mar 96 20:40:08 GMT
- Organization: MiddleWorld SoftWare
- Message-ID: <4hsqbk$rsm@sam.inforamp.net>
- References: <Dnypqo.7zy@iquest.net>
- NNTP-Posting-Host: ts6-06.tor.inforamp.net
- X-Newsreader: News Xpress Version 1.0 Beta #4
-
- > /* Here is the problem area*/
- >
- > for(y=0;y<25;y++) dptr--;
-
- Your telling me. You are starting with d[0]. When you d--, then you are at
- d[-1]. I think you want to increment, not decrement the pointer. I could be
- wrong though.
-
- Agrivar
-